.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f1f1f1;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    font-family: Arial, sans-serif;
    transition: transform 0.5s ease-in-out;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    flex: 1;
    margin-right: 20px;
}

.cookie-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.cookie-text {
    font-size: 14px;
    color: #333;
}

.cookie-button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
}

.cookie-button:hover {
    background-color: #45a049;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
    }
    
    .cookie-content {
        margin-right: 0;
        margin-bottom: 10px;
    }
}